From e13cec480273670b6cca7ae15e4d0457f4d3d6c0 Mon Sep 17 00:00:00 2001 From: Brion Vibber Date: Thu, 15 Dec 2011 00:38:09 +0000 Subject: [PATCH] Remove stray trailing commas on last items in array literals -- this breaks IE 6/7/8 Followup r105560 --- .../qunit/suites/resources/jquery/jquery.tablesorter.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js b/tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js index 6859eaf750..61f1408df1 100644 --- a/tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js +++ b/tests/qunit/suites/resources/jquery/jquery.tablesorter.test.js @@ -492,7 +492,7 @@ var numbers = [ [ '13,000'], [ '9' ], [ '14' ], - [ '8.0' ], + [ '8.0' ] ]; var numbersAsc = [ [ '7' ], @@ -500,7 +500,7 @@ var numbersAsc = [ [ '9' ], [ '12' ], [ '14' ], - [ '13,000'], + [ '13,000'] ]; tableTest( 'bug 8115: sort numbers with commas (ascending)', -- 2.20.1